ScxV6Server.RootArea Method
Retrieve the root Area of Interest ("World").
The following example written in VB.NET outputs the name of the root area of interest to the console.
Dim Svr As ScxV6DbClient.ScxV6Server
' Connect to the server
Svr = New ScxV6DbClient.ScxV6Server
Svr.Connect("MAIN", "", "")
Console.WriteLine("The name of the root Area of Interest is ""{0}""", Svr.RootArea.Name)
This produces the following output:
The name of the root Area of Interest is "World"